home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
tclMotif-1.4
/
programs
/
progDH4.2b
< prev
next >
Wrap
Text File
|
1995-06-29
|
562b
|
22 lines
# Dans program 4.2
# test a scrolled list
xtAppInitialize -class Program
xmMainWindow .main managed
# creating a scrolled list makes two new widgets - the scrolled window
# and the list. The sw is used for geometry, the list - as a list
xmScrolledList .main.list managed
# note the list is used here
.main.list setValues -itemCount 8 \
-items "red, green, blue, orange, maroon, grey, black, white"
.main.list setValues -visibleItemCount 5
# note the sw is used here, not the list
.main setValues -workWindow [.main.list parent]
. realizeWidget
. mainLoop